home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / socks / README < prev    next >
Encoding:
Text File  |  1992-09-25  |  1.8 KB  |  50 lines

  1.  
  2.          #####
  3.         #     #   ####    ####   #    #   ####
  4.         #        #    #  #    #  #   #   #
  5.          #####   #    #  #       ####     ####
  6.               #  #    #  #       #  #         #
  7.         #     #  #    #  #    #  #   #   #    #
  8.          #####    ####    ####   #    #   ####
  9.  
  10.  
  11. This system was described in a paper appearing the the 1992 USENIX
  12. Security Simposium.  This code has been in use at a variety of sites
  13. for many years, and is now available for general consumption.
  14.  
  15. One quick disclaimer, which is that documentation isn't up to snuff,
  16. the best best thing available is the USENIX procedings.  If you
  17. notice something in particular lacking please let me know.
  18.  
  19. I can reached at, for any questions comments or other sudgestions:
  20.     koblas@netcom.com
  21.  
  22. What the directories contain:
  23.  
  24.   include   -- Common include file for both the daemon and library
  25.   lib       -- Standard library containting replacement calls 
  26.   rfinger   -- Example Rconnect() program, contains both finger & whois
  27.   rftp      -- The standard BSD Networking release finger, copied
  28.             from ftp.uu.net, and modified to work with Socks
  29.   sockd     -- The daemon that runs on the gateway host.
  30.   doc       -- Some unfinished documentation
  31.  
  32. *** The short and simple installation instructions:
  33.  
  34. 1) Look at the socks.h in the include directory, cusomize it for your site.
  35.  
  36. 2) Put the following line in your /etc/services file
  37.     socks           1080/tcp              # Socks gateway service
  38.  
  39. 3) Cusomize sockd/sockd.conf to your sites needs
  40.  
  41. 4) Copy sockd/sockd and sockd/sockd.conf to your gateway host
  42.  
  43. 5) Add the following line to your /etc/inetd.conf file on the gateway
  44.     socks   stream  tcp     nowait  nobody  /etc/sockd    sockd
  45.  
  46. 6) Reload your inetd on the gateway host (kill -HUP <pid of inetd>)
  47.  
  48. 7) Test out rwhois or rfinger in the rfinger directory to see if
  49.    things are working.
  50.